HTMLify

script.js
Views: 31 | Author: cody
$(document).ready(function() {
	$('span').on('mouseover', function() {
		$(this).addClass('fall');
	});
});

Comments